A r t i c l e s
Navigation

Note: This site is
a bit older, personal views
may have changed.

M a i n P a g e

D i r e c t o r y

Delphi Examples


Some Delphi tips and examples:
// retrieve the windows directory, i.e. c:\winnt, c:\windows
function GetWinDir: string;
var
  PWindowsDir: array [0..255] of Char;
begin
  GetWindowsDirectory(PWindowsDir,255);
  result:= string(PWindowsDir);
end;


About
This site is about programming and other things.
_ _ _